/*
** 2004 May 22
**
** The author disclaims copyright to this source code.  In place of
** a legal notice, here is a blessing:
**
**    May you do good and not evil.
**    May you find forgiveness for yourself and forgive others.
**    May you share freely, never taking more than you give.
**
******************************************************************************
**
** This header file defined OS-specific features for Unix.
*/
#ifndef _SQLITE_OS_RISCOS_H_
#define _SQLITE_OS_RISCOS_H_

/*
** Helpful hint:  To get this to compile on HP/UX, add -D_INCLUDE_POSIX_SOURCE
** to the compiler command line.
*/

/*
** standard include files.
*/
#include "osfind.h"

/*
** Minimum interval supported by sqlite3OsSleep().
*/
# define SQLITE_MIN_SLEEP_MS 1000

#endif /* _SQLITE_OS_RISCOS_H_ */


